HTML Practice Questions

Q1] What is true about the following HTML?
       <a href="http://www.dr-chuck.com/page2.htm">Second Page</a>

-->	The reference is an absolute reference

Q2] What do you put at the beginning of an HTML file to inform the browser which variant of HTML you will be using in this document?

-->	DOCTYPE

Q3] What is the name of the tag that is used in a document's <head> area to set the text shown in the tab of the browser or title bar?

-->	title

Q4] In HTML, what attribute is used to indicate text that will be shown if an image is not loaded or read to a user that is using a screen reader?

-->	alt

Q5] For the following HTML:
<img src="csev_ian_dolphin_small.jpg" alt="Photo Credit: Ian Dolphin" width="160" align="middle">
What is an example of an "attribute"?

-->	src

Q6] How do you show a less-than (<) in an an HTML page?

-->	&lt;

Q7] What does the <ul> tag accomplish?

-->	Begins an un-ordered list. 

Q8] In a table, what is the general order of tags from outer to inner when constructing a table?

-->	<table> <tr> <td>
